home *** CD-ROM | disk | FTP | other *** search
/ Interactive Media Design Review 1999 / Interactive Media Design Review 1999.iso / pc / allfiles / Centri / Centri.dir / 00201_Script_PopScreen2 < prev    next >
Text File  |  1999-02-25  |  885b  |  39 lines

  1.  
  2. on mouseWithin me
  3.   set the cursor of sprite the spriteNum of me to [210,211]
  4.   
  5.   set the visibility of sprite 47 = TRUE
  6.   set the visibility of sprite 49 = TRUE
  7. end
  8.  
  9. on mouseLeave me
  10.   set the cursor of sprite the spriteNum of me to -1
  11.   
  12. end 
  13.  
  14.  
  15. on mouseUp me
  16.   if the memberNum of sprite the spriteNum of me = 218 then
  17.     
  18.     set the memberNum of sprite the spriteNum of me = 220
  19.     
  20.     set the visibility of sprite 45 = TRUE
  21.     set the visibility of sprite 23 = TRUE
  22.     set the visibility of sprite 47 = TRUE
  23.     
  24.   else if the memberNum of sprite the spriteNum of me = 220 then
  25.     
  26.     set the memberNum of sprite the spriteNum of me = 218 
  27.     
  28.     set the visibility of sprite 45 = FALSE
  29.     set the visibility of sprite 23 = FALSE
  30.     set the visibility of sprite 47 = FALSE
  31.     
  32.   end if  
  33.   puppetSound 2, "click_Edit"
  34.   
  35. end
  36.  
  37.  
  38.  
  39.